home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / UDPBind.au3 < prev    next >
Text File  |  2007-09-08  |  297b  |  13 lines

  1. ;SERVER!! Start Me First !!!!!!!!!!!!!!!
  2. $g_IP = "127.0.0.1"
  3.  
  4. ; Start The UDP Services
  5. ;==============================================
  6. UDPStartUp()
  7.  
  8. ; Create a Listening "SOCKET"
  9. ;==============================================
  10. $socket = UDPBind($g_IP, 65432)
  11. If @error <> 0 Then Exit
  12.  
  13.